home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / dev / amos / AMOS1097.lzh / AMOSLIST / 000075_amos-request@svcs1.digex.net_Tue Oct 7 02:30:21 1997.msg < prev    next >
Internet Message Format  |  1997-11-02  |  4KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail4.access.digex.net (8.8.5/8.8.5) with ESMTP id CAA20517
  3.     for <mcox@access.digex.net>; Tue, 7 Oct 1997 02:30:20 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id BAA06026
  6.     for amos-out; Tue, 7 Oct 1997 01:09:28 -0400 (EDT)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id BAA06023
  9.     for <amos-list@svcs1.digex.net>; Tue, 7 Oct 1997 01:09:27 -0400 (EDT)
  10. Received: from mago.agonet.it (root@mago.agonet.it [195.32.124.10])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id BAA21500
  12.     for <amos-list@access.digex.net>; Tue, 7 Oct 1997 01:09:24 -0400 (EDT)
  13. Received: from agonet.it (ghizzo@p126070.agonet.it [195.32.126.70])
  14.     by mago.agonet.it (8.8.5/8.8.5) with SMTP id HAA01312;
  15.     Tue, 7 Oct 1997 07:01:30 +0200
  16. From: Pietro Ghizzoni <ghizzo@agonet.it>
  17. Reply-To: Pietro Ghizzoni <ghizzo@agonet.it>
  18. To: Mush <mushypd@redrose.net>, Amos-List <amos-list@access.digex.net>
  19. Date: Tue, 07 Oct 1997 06:58:05 +0100
  20. Message-ID: <yam7219.281.2014804536@mail.agonet.it>
  21. In-Reply-To: <yam7218.2058.3188896@mail.redrose.net>
  22. X-Mailer: YAM 1.3.4 - Amiga Mailer by Marcel Beck
  23. Organization: Dairymen Soft
  24. Subject: Re: AMOSPro or GUI Extension bug?
  25. MIME-Version: 1.0
  26. Content-Type: text/plain
  27. Status: O
  28. X-Status: 
  29.  
  30. On 05-Ott-97, Mush wrote: AMOSPro or GUI Extension bug?
  31.  
  32. >Im having a problem with AMOSPro, and I dont know if it is the Pro editor
  33. >itself, or something in the GUI extension that is affecting it.
  34.  
  35. or something in your program ;)
  36.  
  37.  
  38. >   ' Open up a CLI window and grab the news!
  39. >   Proc WOP[2,50,50,540,100,"Mailinglist Manager Output..."]
  40. >   Proc WPR[2,"Attempting to Execute News Recovery script"+Chr$(10)+Chr$(10)]
  41. >   Proc WEX[2,"SYS:REXXC/Rx Mailserv:REXX/NNTPTransfer"]
  42. >   Wait 200
  43. >   WCL[2]
  44.  
  45. >Now, the real problem is the fact that the routine is deleting the contents
  46. >of the WEX[""] line, no matter where i run it from, and no matter what is
  47. >in it, when I go back to source format, the line will read:
  48. >
  49. >   Proc WEX["
  50. >
  51. >
  52. >Ive never used these procedures in ages, and only after starting using the
  53. >GUI extension, am I discovering these wierd effects. Like I said, I dont
  54. >know if its AMOSPro, or the GUI Extension.
  55.  
  56. Oh no.... the bug is in the WEX procedure, exactly here:
  57.  
  58.  
  59. If Len(COM$)>0
  60.       V=Varptr(COM$)
  61.       For ZZ=0 To Len(COM$)-1 : Poke ZZ+V,0 : Next ZZ
  62. End If 
  63.  
  64.  
  65. This is a *very* bad idea. The FOR cycle is destroing your source code!
  66. Poke directly a 0 into a amos string is dangeours... the explanation is a
  67. bit boring. You can find it in the AmosPro manual... section 14.A.08
  68.  
  69.  
  70. In order to fix the problem, remove this unuseful(???) lines from the
  71. procedure.
  72.  
  73. -- 
  74.  
  75.  
  76. Bye!
  77.  
  78.  
  79.                                      !!!
  80.                                      o o
  81.    +-----------------------------oOO-(_)-OOo----------------------------+
  82.    |                                                                    |
  83.    |  Pietro Ghizzoni - Dairymen Soft              __  /// Amiga 12OO   |
  84.    |     E-Mail:  ghizzo@agonet.it                 \\\/// 'O3O  5OMhz   |
  85.    |            Team AMIGA                          \/// 1OMB - CD4x    |
  86.    |                                                                    |
  87.    | Amos Professional Team Coordinator               AMIGA RULEZ!!     |
  88.    |                                                                    |
  89.    +--------------------------------------------------------------------+
  90.